home *** CD-ROM | disk | FTP | other *** search
/ EROS 2 / EROS 2.iso / mac / EROS vol.2 / EROS vol.DXR / 00778.ls < prev    next >
Encoding:
Text File  |  1995-12-20  |  2.8 KB  |  99 lines

  1. on exitFrame
  2.   global tap, gtime, tspeed, stime, scNUM, scTIME, iSTART, score
  3.   set tap to random(37) + iSTART
  4.   set the castNum of sprite 3 to tap
  5.   updateStage()
  6.   if (the ticks - gtime) > 60 then
  7.     set gtime to the ticks
  8.     set stime to stime - 1
  9.     set the text of cast scTIME to EMPTY & stime & EMPTY
  10.     if stime = 0 then
  11.       go(marker(0) + 2)
  12.       set the locH of sprite 20 to -200
  13.       comit()
  14.       set the locH of sprite 27 to the locH of sprite 10 + 6
  15.       set the locV of sprite 27 to the locV of sprite 10 - 6
  16.     end if
  17.   end if
  18.   if tspeed = 1 then
  19.     puppetTempo(20)
  20.   end if
  21.   if tspeed = 4 then
  22.     puppetTempo(4)
  23.   end if
  24.   if tspeed = 2 then
  25.     puppetTempo(2)
  26.   end if
  27.   if tspeed = 3 then
  28.     puppetTempo(1)
  29.   end if
  30. end
  31.  
  32. on comit
  33.   global score
  34.   if score >= 30 then
  35.     set the text of cast "comment" to "  Maybe you should try a faster speed!?  "
  36.     exit
  37.   end if
  38.   if (score >= 25) and (score <= 29) then
  39.     set the text of cast "comment" to "  Unbelivable! You are a super pervert!  "
  40.     exit
  41.   end if
  42.   if (score >= 20) and (score <= 24) then
  43.     set the text of cast "comment" to "  James Bond could do no better  "
  44.     exit
  45.   end if
  46.   if (score >= 15) and (score <= 19) then
  47.     set the text of cast "comment" to "  Dude! Excellent score.  "
  48.     exit
  49.   end if
  50.   if (score >= 11) and (score <= 14) then
  51.     set the text of cast "comment" to "  Very good. You are human.  "
  52.     exit
  53.   end if
  54.   if (score >= 5) and (score <= 10) then
  55.     set the text of cast "comment" to "  Not Bad.  "
  56.     exit
  57.   end if
  58.   if (score >= 0) and (score <= 4) then
  59.     set the text of cast "comment" to "  Pretty Boderline  "
  60.     exit
  61.   end if
  62.   if (score <= -1) and (score >= -5) then
  63.     set the text of cast "comment" to "  Hmmm...almost a man  "
  64.     exit
  65.   end if
  66.   if (score <= -6) and (score >= -9) then
  67.     set the text of cast "comment" to "  Not too good. Remember: boobs in front, butt in back.  "
  68.     exit
  69.   end if
  70.   if (score <= -10) and (score >= -15) then
  71.     set the text of cast "comment" to "  Houston...we have a problem  "
  72.     exit
  73.   end if
  74.   if (score <= -16) and (score >= -19) then
  75.     set the text of cast "comment" to "  You need to take Anatomy 101  "
  76.     exit
  77.   end if
  78.   if (score <= -20) and (score >= -25) then
  79.     set the text of cast "comment" to "  You are legally blind  "
  80.     exit
  81.   end if
  82.   if (score <= -26) and (score >= -30) then
  83.     set the text of cast "comment" to "  Maybe you should try a slower speed  "
  84.     exit
  85.   end if
  86.   if (score <= -35) and (score >= -39) then
  87.     set the text of cast "comment" to "  Are you missing a chromasome?  "
  88.     exit
  89.   end if
  90.   if (score <= -40) and (score >= 49) then
  91.     set the text of cast "comment" to "  Oh My God! (this is really bad)  "
  92.     exit
  93.   end if
  94.   if score <= -50 then
  95.     set the text of cast "comment" to "  Apparently you are trying to lose  "
  96.     exit
  97.   end if
  98. end
  99.